8 bool isVocal(const string
&s
){
9 string vocs
= "aAeEiIoOuU";
10 for (int i
=0; i
<vocs
.length(); i
++){
11 if (s
== vocs
.substr(i
, 1)){
18 bool isAlpha(const string
&s
){
19 for (int i
=0; i
<s
.length(); i
++){
20 if (!isalpha(s
.at(i
))){
27 string
procesar(const string
&s
){
28 if (isVocal(s
.substr(0,1))){
31 return (s
.substr(1, s
.length()-1) + s
.substr(0,1)+"ay");
40 while ( getline(cin
, entrada
) ){
44 int len
= entrada
.length();
45 for (int i
=0; i
<len
; i
++){
46 if (!isAlpha(entrada
.substr(i
,1))){
47 if (temp
.length() > 0){
48 //cout << procesar(temp);
57 cout
<< cuenta
<< endl
;